home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat8 / systmat.8 < prev   
Text File  |  1999-09-16  |  586b  |  67 lines

  1.  
  2.  
  3.  
  4. systmat(1)                     Scilab Function                     systmat(1)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   systmat - system matrix
  13.  
  14. CALLING SEQUENCE
  15.   [Sm]=systmat(Sl);
  16.  
  17. PARAMETERS
  18.  
  19.   Sl   : linear system (syslin list) or descriptor system
  20.  
  21.   Sm   : matrix pencil
  22.  
  23. DESCRIPTION
  24.   System matrix of the linear system Sl (syslin list) in state-space form
  25.   (utility function).
  26.    Sm = [-sI + A   B;
  27.         [    C     D]
  28.   For a descriptor system (Sl=list('des',A,B,C,D,E)), systmat returns:
  29.    Sm = [-sE + A   B;
  30.         [    C     D]
  31.  
  32. SEE ALSO
  33.   ss2des, sm2des, sm2ss
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.